home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d18
/
totdem.arc
/
DEMIO6.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-10
|
442b
|
23 lines
program DemoIOSix;
{demIO6 - single string field input}
Uses DOS, CRT,
totFAST, totIO1, totIO2, totSTR;
var
Field: StringIOOBJ;
begin
with Field do
begin
Init(40,5,10);
SetLabel('Field (StringIOOBJ)');
SetCase(upper);
SetValue('hello');
SetRules(EraseDefault+JumpIfFull);
clrscr;
Activate;
writeln;writeln('You entered ',GetValue);
Done;
end;
end.